From: Jim Blandy Date: Fri, 21 May 1993 23:39:17 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96119 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=02a76f8aca37c597d988e54ac946849abefe41ce;p=emacs.git *** empty log message *** --- diff --git a/src/alloca.c b/src/alloca.c index b83b35d277b..bc34529fdd2 100644 --- a/src/alloca.c +++ b/src/alloca.c @@ -42,10 +42,6 @@ lose #endif /* static */ #endif /* emacs */ -#ifdef emacs -#define free xfree -#endif - /* If your stack is a linked list of frames, you have to provide an "address metric" ADDRESS_FUNCTION macro. */ @@ -64,8 +60,6 @@ typedef char *pointer; #define NULL 0 -extern pointer xmalloc (); - /* Define STACK_DIRECTION if you know the direction of stack growth for your system; otherwise it will be automatically deduced at run-time. @@ -181,7 +175,7 @@ alloca (size) /* Allocate combined header + user data storage. */ { - register pointer new = xmalloc (sizeof (header) + size); + register pointer new = malloc (sizeof (header) + size); /* Address of header. */ ((header *) new)->h.next = last_alloca_header; diff --git a/src/s/sco4.h b/src/s/sco4.h index e111d977162..a94e27dcb51 100644 --- a/src/s/sco4.h +++ b/src/s/sco4.h @@ -46,9 +46,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* SCO has bcopy, et. al. */ #define BSTRING -/* Use both and . */ -#define TIME_WITH_SYS_TIME - /* Sockets are an option on SCO. If we have X, we have them. */ #ifdef HAVE_X_WINDOWS #define HAVE_SOCKETS